go.uber.org/atomic.Int32.v (field)
8 uses
go.uber.org/atomic (current package)
int32.go#L35: v int32
int32.go#L40: return &Int32{v: val}
int32.go#L45: return atomic.LoadInt32(&i.v)
int32.go#L50: return atomic.AddInt32(&i.v, delta)
int32.go#L55: return atomic.AddInt32(&i.v, -delta)
int32.go#L77: return atomic.CompareAndSwapInt32(&i.v, old, new)
int32.go#L82: atomic.StoreInt32(&i.v, val)
int32.go#L87: return atomic.SwapInt32(&i.v, val)
The pages are generated with Golds v0.6.7. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |